home *** CD-ROM | disk | FTP | other *** search
/ Education (Super OZ Shareware) / Education (Super OZ Shareware).iso / arj / arjback.bat < prev    next >
DOS Batch File  |  1993-07-20  |  386b  |  11 lines

  1. REM ARJ program to fully backup a drive to another drive
  2. REM This program assumes that there is work space available on the hard drive
  3. if "%1" == "" goto param_err
  4. if "%2" == "" goto param_err
  5. ARJ a -a1 -b2 -m3 -r -vvas -w%1:\ -ji%1:\backup.inx -js -jt %2:\backup %1:\
  6. goto end
  7. :param_err
  8. REM Usage: ARJBACK hard_drive_letter diskette_drive_letter
  9. REM        ARJBACK C A
  10. :end
  11.